home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / instools / prelude.zip / LINGUA13.EXE / LINGUA.H < prev    next >
C/C++ Source or Header  |  1994-02-17  |  668b  |  28 lines

  1. /* --------------------------------------------*\
  2. | lingua.h (version 1.2) -- (C) SichemSoft 1993 |
  3. | Roghorst 160, 6708 KS Wageningen, Netherlands |
  4. | include for language independent applications |
  5. | author: Anneke Sicherer-Roetman, date: 930521 |
  6. \* --------------------------------------------*/
  7.  
  8. #ifndef LINGUAH
  9. #define LINGUAH
  10.  
  11. #define UIT_ENCRYPT    53
  12. #define TRUE           1
  13. #define FALSE          0
  14.  
  15. #ifdef __MSDOS__
  16. #define readRA  "rb+"
  17. #define writeRA "wb+"
  18. #define lf      "\r\n"
  19. #define lfchk   ('\r'+'\n')
  20. #else /* UNIX */
  21. #define readRA  "r+"
  22. #define writeRA "w+"
  23. #define lf      "\n"
  24. #define lfchk   ('\n')
  25. #endif
  26.  
  27. #endif
  28.